import { Button, useTheme } from '@aws-amplify/ui-react'; // use any CSS value export const BorderStylePropExample = () => { return ( ); }; // use a design token from the theme object export const BorderThemeTokenExample = () => { const { tokens } = useTheme(); return ( ); }; // use a design token name export const BorderTokenNameExample = () => { return ; };